home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 04 / 4 / DISK0442.ZIP / SPAWN.BAT < prev    next >
DOS Batch File  |  1986-04-10  |  826b  |  30 lines

  1. Echo off
  2. if /%1 == / goto :bad
  3. if %1 == ? goto :help
  4. if not exist %1.war goto :bad
  5. rename %1.war input.war
  6. pwarn
  7. rename output.dia %1.dia
  8. rename output.ech %1.ech
  9. rename output.src %1.src
  10. rename output.pun %1.pun
  11. rename input.war %1.war
  12. goto :out
  13. :bad
  14. Echo *** Error *** Bad File Specifier: %1
  15. Echo
  16. :help
  17. Echo **************************************
  18. Echo * Usage:                             *
  19. Echo *   SPAWN fn                         *
  20. Echo *                                    *
  21. Echo * where                              *
  22. Echo *   fn.WAR is the input file         *
  23. Echo *   fn.DIA is the output diagram     *
  24. Echo *   fn.PUN is the source code output *
  25. Echo *   fn.ECH is the echo & diagnostics *
  26. Echo *   fn.SRC is the reformatted source *
  27. Echo **************************************
  28. :out
  29.  
  30.